The following is a segmented description of a POV video: [Segmented_Description]
# Task Definition
The above text describes a POV video segment. Based on the video description provided, extract all non-action relations related to the entities in the list.  
Relations represent static states, such as "located at," "near," "above," "contains," or "connected to."  
A relation exists between two entities and is represented as a triple with direction: source entity → relation → target entity.  
Relations also have attributes. In addition to the relation name, you may include descriptive information to provide further details. Furthermore, relations have start and end time attributes in the format "hh:mm:ss." The start time is mandatory and indicates when the relation first appears, while the end time is optional and marks when the relation ceases. The appearance and termination of relations are typically caused by interactive actions. When creating a relation, the source and target entities must come from the following entity list:  Characters: [chars]
Areas: [areas]
Objects: [objs]

# Output Format
{  
    "relations": [  
        {  
            "relation_name": "",  
            "source_name": "",  
            "target_name": "",  
            "relation_info": "",  
            "start_time": "hh:mm:ss",  
            "end_time": "hh:mm:ss"    // optional  
        },  
    ]  
}
